-
Notifications
You must be signed in to change notification settings - Fork 236
New issue
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
CB-17015 Ephemeral Disk in Data Mart and Real-time Data Mart Data Hub Clusters… #13191
Conversation
.../com/sequenceiq/cloudbreak/cmtemplate/configproviders/yarn/YarnVolumeConfigProviderTest.java
Outdated
Show resolved
Hide resolved
-- Migration SQL that makes the change goes here. | ||
|
||
ALTER TABLE template ADD COLUMN IF NOT EXISTS instancestoragesize INTEGER; | ||
UPDATE template SET instancestoragesize = 0 WHERE instancestoragesize IS NULL; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you have stats on how many records are affected?
Please avoid setting defaults for new fields (as well as NON NULL constraints). Solve it from backend code.
...rc/main/resources/schema/app/20220727094806_CB-17015_Add_InstanceStorageSize_to_Template.sql
Outdated
Show resolved
Hide resolved
.../com/sequenceiq/cloudbreak/cmtemplate/configproviders/impala/ImpalaVolumeConfigProvider.java
Show resolved
Hide resolved
.../com/sequenceiq/cloudbreak/cmtemplate/configproviders/impala/ImpalaVolumeConfigProvider.java
Outdated
Show resolved
Hide resolved
.../com/sequenceiq/cloudbreak/cmtemplate/configproviders/impala/ImpalaVolumeConfigProvider.java
Outdated
Show resolved
Hide resolved
1cef310
to
7428f0a
Compare
@@ -28,6 +28,11 @@ public Integer mapInstanceTypeToInstanceStoreCountNullHandled(String instanceTyp | |||
return instanceStoreCount != null ? instanceStoreCount : 0; | |||
} | |||
|
|||
public Integer mapInstanceTypeToInstanceSizeNullHandled(String instanceType) { | |||
Integer instanceSize = instaceStoreConfigMap.getOrDefault(instanceType, VolumeParameterConfig.EMPTY).minimumSize(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you test the functionality on Azure as well as AWS? AFAIK there are Azure instance types where besides the one ephemeral volume that comes with every Azure instance there are also additional NVMW ephemeral volumes that can be of different size than the default one ephemeral volume. And I think Azure implementation of the instance store metadata collection is not prepared for this scenario and only returns info about the one default ephemeral storage
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I had discussed this with @juhi-09. So, we had decided to do the changes for AWS first and after that would look for changes in the Azure part.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So it means that on Azure clusters the impala cache will be put on the generic one ephemeral volume and the extra nvme ephemeral volumes won't be used, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@drorke It is ok, if we use generic ephemeral volume and ignore the extra nvme ephemeral volumes
to calculate impala params ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You will need to rebase on top of master too.
.../com/sequenceiq/cloudbreak/cmtemplate/configproviders/impala/ImpalaVolumeConfigProvider.java
Outdated
Show resolved
Hide resolved
7428f0a
to
6b7e06d
Compare
466eebf
to
27969af
Compare
.../com/sequenceiq/cloudbreak/cmtemplate/configproviders/impala/ImpalaVolumeConfigProvider.java
Outdated
Show resolved
Hide resolved
.../com/sequenceiq/cloudbreak/cmtemplate/configproviders/impala/ImpalaVolumeConfigProvider.java
Outdated
Show resolved
Hide resolved
.../com/sequenceiq/cloudbreak/cmtemplate/configproviders/impala/ImpalaVolumeConfigProvider.java
Outdated
Show resolved
Hide resolved
27969af
to
69b83a8
Compare
69b83a8
to
3bbcd2c
Compare
.../com/sequenceiq/cloudbreak/cmtemplate/configproviders/impala/ImpalaVolumeConfigProvider.java
Show resolved
Hide resolved
.../sequenceiq/cloudbreak/cmtemplate/configproviders/impala/ImpalaVolumeConfigProviderTest.java
Outdated
Show resolved
Hide resolved
… Clusters - Added the Ephermeral disk storage size value to IMPALA_DATACACHE_CAPACITY_PARAM. Testing - Covered changes with unit tests. - Made changes as per the review.
3bbcd2c
to
681cf31
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Testing
See detailed description in the commit message.