This repository was archived by the owner on Oct 7, 2022. It is now read-only.
Modified ss table loader#2
Open
Barala wants to merge 35 commits into
Open
Conversation
explanation patch by Stefania; reviewed by pauloricardomg for CASSANDRA-10799
Patch by Carl Yeksigian; reviewed by marcuse for CASSANDRA-8805
patch by Robert Stupp; reviewed by Michael Shuler for CASSANDRA-10764
patch by Benjamin Lerer; reviewed by Jake Luciani for CASSANDRA-10807
Patch by Branimir Lambov; reviewed by marcuse for CASSANDRA-9179
Fix and new testcase Patch by tjake; reviewed by Aleksey Yeschenko for CASSANDRA-10700
patch by Stefania Alborghetti; reviewed by Adam Holmberg for CASSANDRA-9302
patch by Ariel Weisberg; reviewed by Branimir Lambov for CASSANDRA-10593
patch by Paulo Motta; reviewed by yukim for CASSANDRA-9294
Patch by stefania; reviewed by pmotta for CASSANDRA-10854
patch by Yasuharu Goto; reviewed by Paulo Motta for CASSANDRA-10875
Patch by marcuse; reviewed by yukim for CASSANDRA-10831
patch by yukim; reviewed by snazy for CASSANDRA-9309
…ddress in checkForEndpointCollision to enable quicker bootstrap retries. patch by jkni; reviewed by Stefania for CASSANDRA-10844
patch by Stefania; reviewed by pauloricardomg for CASSANDRA-9303
patch by jeromatron; reviewed by aweisberg for CASSANDRA-9708
patch by kohlisankalp; reviewed by blambov for CASSANDRA-10887
Patch by Stefania Alborghetti; reviewed by Sam Tunnicliffe for CASSANDRA-8072
patch by Carl Yeksigian; reviewed by Yuki Morishita for CASSANDRA-10676
patch by aweisberg; reviewed by slebresne for CASSANDRA-10477
patch by Paulo Motta; reviewed by Benjamin Lerer for CASSANDRA-10686
patch by Stefania Alborghetti; reviewed by Jim Witschey for CASSANDRA-10839
patch by Stefania Alborghetti; reviewed by Paulo Motta for CASSANDRA-10997
Patch by marcuse; reviewed by Sylvain Lebresne for CASSANDRA-10847
…es are used patch by Sankalp Kohli; reviewed by tjake for CASSANDRA-11005
patch by Paulo Motta; reviewed by yukim for CASSANDRA-10961
…esstables. Patch by marcuse; reviewed by Carl Yeksigian for CASSANDRA-10829
Patch by marcuse; reviewed by Carl Yeksigian for CASSANDRA-10909
… stored generation for remote host to allow long-running clusters. patch by jkni; reviewed by Stefania for CASSANDRA-10969
patch by yukim; reviewed by tjake for CASANDRA-11007
Collaborator
|
@Barala Is this valid? Can you rebase |
Collaborator
Author
|
@chaitan64arun Yes I'll apply both PR to our Cassandra. Right now I'm testing it on my local. As they have some more requirements. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Now we can transfer data for a given tenant from sstable(which is having data for all tenants) to another cluster.
cmd option to pass tenantId:-
(1) long option:- --tenantId
(2) short option:- -o
And also improvement in 'SSTable Component' Now It won't drop
*summary.dbcomponent.Performance
Filter won't affect performance that much so we can assume it is as good as default sstableLoader.
TODO
Right now storing all the keys in a list which will face the problem If we have very very big sstables. In this case we will write to disk instead of storing in a list.