We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey there,
The following entry added to opsworks does not add multiple EBS volumes and mount them.
"data": { "devices": { "/dev/xvdf": { "file_system": "ext3", "mount_options": "rw,user", "mount_path": "/usr/local/var/data/elasticsearch/logstash", "format_command": "mkfs.ext3", "fs_check_command": "dumpe2fs", "region": "eu-west-1", "ebs": { "device": "/dev/xvdf", "delete_on_termination": true, "size": 1000, "type": "io1", "iops": 2000 }, "/dev/xvdg": { "file_system": "ext3", "mount_options": "rw,user", "mount_path": "/usr/local/var/data/elasticsearch/logstash1", "format_command": "mkfs.ext3", "fs_check_command": "dumpe2fs", "region": "eu-west-1", "ebs": { "device": "/dev/xvdf", "delete_on_termination": true, "size": 1000, "type": "io1", "iops": 2000 } } } }
There are two mount referenced, why does it only create one?
This code suggests it should just work as it cycles throught all the devices.
https://github.com/elasticsearch/cookbook-elasticsearch/blob/master/recipes/ebs.rb
Regards
J
The text was updated successfully, but these errors were encountered:
I screwed up my data bag. NVM fixed
Sorry, something went wrong.
No branches or pull requests
Hey there,
The following entry added to opsworks does not add multiple EBS volumes and mount them.
"data": { "devices": { "/dev/xvdf": { "file_system": "ext3", "mount_options": "rw,user", "mount_path": "/usr/local/var/data/elasticsearch/logstash", "format_command": "mkfs.ext3", "fs_check_command": "dumpe2fs", "region": "eu-west-1", "ebs": { "device": "/dev/xvdf", "delete_on_termination": true, "size": 1000, "type": "io1", "iops": 2000 }, "/dev/xvdg": { "file_system": "ext3", "mount_options": "rw,user", "mount_path": "/usr/local/var/data/elasticsearch/logstash1", "format_command": "mkfs.ext3", "fs_check_command": "dumpe2fs", "region": "eu-west-1", "ebs": { "device": "/dev/xvdf", "delete_on_termination": true, "size": 1000, "type": "io1", "iops": 2000 } } } }
There are two mount referenced, why does it only create one?
This code suggests it should just work as it cycles throught all the devices.
https://github.com/elasticsearch/cookbook-elasticsearch/blob/master/recipes/ebs.rb
Regards
J
The text was updated successfully, but these errors were encountered: