aboutsummaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2019-02-01Added testcase for service layer RestAdmin apiChandan Ghosh1-0/+91
Added testcase for service layer getOnboardedInfoSearch method Issue-ID: MUSIC-305 Change-Id: If5ebc6969f3a4672b79e389147ec90de578596b0 Signed-off-by: Chandan Ghosh <cghosh12@in.ibm.com>
2019-01-21refactord RestMusicAdminAPI.java as per spring MVCSandeep J10-704/+1106
refactored the class and updated unit test cases as per the code changes Issue-ID: MUSIC-212 Change-Id: Id66854be3894d36e2c2b0a6d86c2f6bb29e48db6 Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
2018-12-22Implement first benchmarksMohammad Salehe1-0/+253
Implement simple benchmarks for 4 different put scenarios: - Music Entry Consistency - Music Eventual - Music Sequential Consistent (Using LWT) - Pure Consistent (Using LWT) Change-Id: Ia4b989c640a198f03086e781450e79c8c43918df Issue-ID: MUSIC-148 Signed-off-by: Mohammad Salehe <salehe@cs.toronto.edu>
2018-12-22Add retry logic for acquireLock in atomicPutMohammad Salehe3-28/+72
acquireLock might fail right after generating a new lock reference because we are not making a SERIAL get. atomicPut should keep retrying until it acquires the lock. Change-Id: I7b0f85a0d0229e28a56cdd41ec69fcde8d8398fe Issue-ID: MUSIC-148 Signed-off-by: Mohammad Salehe <salehe@cs.toronto.edu>
2018-12-22Add primary time measurements to MusicCoreMohammad Salehe4-243/+324
Add time measurements to MusicCore.atomicPut and dependent Cassandra execute path Change-Id: I44455d7232e12d29a648c3d59d9aa102bf1ab232 Issue-ID: MUSIC-148 Signed-off-by: Mohammad Salehe <salehe@cs.toronto.edu>
2018-12-22Refactor Cassandra connection processMohammad Salehe4-104/+56
Refactor MusicUtil and CassaDataStore to make Cassandra connection initialization process more simple and readable Change-Id: Ied7d3e82dc86dd7d35cd513b13ff0c865dd40b4b Issue-ID: MUSIC-148 Signed-off-by: Mohammad Salehe <salehe@cs.toronto.edu>
2018-12-22Move runnable test classesMohammad Salehe2-42/+76
Move runnable test classes which are not actually tests from src/test to src/main in order for maven to include them in fat jar Change-Id: Ib57db631b1c91ae796fa33becc9f06d05eef4219 Issue-ID: MUSIC-148 Signed-off-by: Mohammad Salehe <salehe@cs.toronto.edu>
2018-12-22Implement time measurement utilityMohammad Salehe4-0/+200
Added a TimeMeasure interface as a utility class to be able to measure running time of specific parts of code. Usually, this will be used for benchmarking. Implemented SamplerHistogramTimeMeasurement that uses reservior sampling to calculate percentiles of large amount of data. Also updated maven pom.xml: - update java version from 1.7 to 1.8 to be able to use java 8 - update guava to 27.0 to use Stats Percentiles - update cassandra java plugin version to 3.6 to fix guava dependency problem Change-Id: I168432ff2e6f5507fedc1678684dd96608703e5a Issue-ID: MUSIC-148 Signed-off-by: Mohammad Salehe <salehe@cs.toronto.edu>
2018-12-21Implement first comparison point testsMohammad Salehe4-120/+245
Implement ComparisonPoints1 benchmarks to test 4 different put scenarios: - Music Entry Consistency - Music Eventual - Music Sequential Consistent (Using LWT) - Pure Consistent (Using LWT) Change-Id: Id9052a0b14686be93189021e19f2dc293188c52b Issue-ID: MUSIC-148 Signed-off-by: Mohammad Salehe <salehe@cs.toronto.edu>
2018-12-20Merge "added files to convert project to spring boot" into dev-cassandra-onlyBharath Balasubramanian8-79/+341
2018-12-12added files to convert project to spring bootSandeep J8-79/+341
also made changes to pom to add required dependencies. fix junit cases, upgrading to mockito 2.x Issue-ID: MUSIC-212 Change-Id: Ieeeaa6d62e03e962534182183aae8ae838d93eba Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
2018-12-12Read/Write locking implementationTschaen, Brendan5-20/+131
Change-Id: I31fedd52e138c848bf12ed0be27c348f4f96bcb5 Issue-ID: MUSIC-262 Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
2018-12-03Cassa lockstore return string for peekLockTschaen, Brendan2-8/+6
Change-Id: I4384ed522e7849ba9ca355efa63a08512f11ccec Issue-ID: MUSIC-222 Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
2018-11-28music as a service impl v3srupane kondreddy25-932/+1317
Change-Id: I7f96eaa48afed96d62ad7662139167e8a17d00d7 Issue-ID: MUSIC-204 Signed-off-by: srupane kondreddy <sk5300@research.att.com>
2018-11-27Add getLockQueue to music apiTschaen, Brendan4-119/+177
Change-Id: Ib7db75a2df76ee7dcca92d69d07c3b947736deab Issue-ID: MUSIC-204 Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
2018-11-20Improve timestamp and query handlingMohammad Salehe7-89/+83
Add timeSlot parameter to CassaDataStore.executePut to prevent inconsistent timestamps Rename CassaDataStore.executeEventualGet and CassaDataStore.executeCriticalPut to reflect their real functionality Use simple bound statement instead of prepared queries to improve performance Change-Id: I439c5279f1c8e645740a9650ab8807c5ffa1725a Issue-ID: MUSIC-148 Signed-off-by: Mohammad Salehe <salehe@cs.toronto.edu>
2018-11-20Implement sequential lock referencesMohammad Salehe4-78/+78
Use guard column for sequential lock references Move v2sTimeStampInMicroseconds as a static method to MusicUtil Use v2sTimeStamp in CassaDataStore.executePut Change-Id: I48b817c4bfe04ec50f5ad6e7cdc91b34fd607feb Issue-ID: MUSIC-148 Signed-off-by: Mohammad Salehe <salehe@cs.toronto.edu>
2018-11-15Revert "music core implemented as a service"Tschaen, Brendan28-740/+454
This reverts commit 7addd52dc73e6571028ca7f6a018e75ec1c9b0ca. Change-Id: I0875ce10521363b8e17eb6cd2cf9d8848e572bea Issue-ID: MUSIC-189 Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
2018-11-13music core implemented as a servicesrupane kondreddy28-454/+740
Change-Id: I4075d0efb03bf2a153976354947be1329660c1f1 Issue-ID: MUSIC-148 Signed-off-by: srupane kondreddy <sk5300@research.att.com>
2018-11-07Modify TestVotingApp and add extra updateMohammad Salehe1-4/+5
Change-Id: I250cef00bbea068196f54f442ed7d47fe0dd4aab Issue-ID: MUSIC-148 Signed-off-by: Mohammad Salehe <salehe@cs.toronto.edu>
2018-11-06Jar only version for nowTschaen, Brendan1-4/+0
Change-Id: I54a94e30da52ad9a01df13d16bbf790fb1245464 Issue-ID: MUSIC-149 Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
2018-11-06Clean up readmeTschaen, Brendan1-5/+16
Ignore broken test cases related to locking Change-Id: Ic54920647519255bfeb3cb59f5d36299e0d1984f Issue-ID: MUSIC-148 Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
2018-11-05Separate jar, ignore locking unit testsTschaen, Brendan3-5/+19
Change-Id: I9ac45fc4dc93a8dad86ead9676129411ca8a5a26 Issue-ID: MUSIC-148 Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
2018-11-01Fix property loading in jarTschaen, Brendan2-0/+39
Change-Id: Idbadcf1d1ae6203b97f50b6659a929595cb53b20 Issue-ID: MUSIC-148 Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
2018-10-16Include Cassandra lockingTschaen, Brendan51-5168/+1361
Change-Id: I085acf8336d5f27782ee12768846a5befd3ee60d Issue-ID: MUSIC-148 Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
2018-10-10Merge "Added test file for NameSpace.java"Thomas Nelson1-0/+56
2018-10-10Merge "Added test file for JsonNotifyClientResponse.java"Thomas Nelson1-0/+46
2018-10-04Added fix for OOF issue.Thomas Nelson Jr (arthurdent3) tn1381@att.com1-1/+1
Updated Pom files for Library version change. Change-Id: Ibf10eba8923353010b66ac8496fb53815f3affc4 Issue-ID: MUSIC-143 Signed-off-by: Thomas Nelson Jr (arthurdent3) tn1381@att.com <tn1381@att.com>
2018-09-30Added test file for JsonNotifyClientResponse.javaArundathi Patil1-0/+46
to increase the coverage Issue-ID: MUSIC-142 Change-Id: I582059e5544f3c092de832d54fcf0b5f15df62c0 Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
2018-09-29Added test file for NameSpace.javaArundathi Patil1-0/+56
To increase the coverage Issue-ID: MUSIC-141 Change-Id: I86c9e8bb0fdeb7dd3ea587cb8087e95fdbb567e3 Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
2018-09-29Added test file for JSONObject.javaArundathi Patil1-0/+44
To increase the coverage Issue-ID: MUSIC-140 Change-Id: Ic92c8a883d758341ab1ec11ad9bb0f062501fe79 Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
2018-09-17Update distribution files to support helm chartsThomas Nelson Jr (arthurdent3) tn1381@att.com6-108/+117
Helm Charts require new Docker images. Refined Cassandra and Cassandra cql loader. Change-Id: Ie7726025afd63e256a43aef9f39d53c32c90c77b Issue-ID: MUSIC-99 Signed-off-by: Thomas Nelson Jr (arthurdent3) tn1381@att.com <tn1381@att.com>
2018-09-18Merge "MusicServiceException.java: Fixed sonar issues"Thomas Nelson1-19/+19
2018-09-17MusicServiceException.java: Fixed sonar issuesArundathi Patil1-19/+19
Sonar Link: https://sonar.onap.org/code?id=org.onap.music%3AMUSIC&selected=org.onap.music%3AMUSIC%3Asrc%2Fmain%2Fjava%2Forg%2Fonap%2Fmusic%2Fexceptions%2FMusicServiceException.java Issue-ID: MUSIC-137 Change-Id: Ibb96c29aa17d7f8f42d1ceb5aa9581b2b250e2dc Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
2018-09-12Move string literal to left of string comparisonSooriyaa1-1/+1
Move string literal to left of string comparison Issue-ID: MUSIC-135 Change-Id: I622f2682e98c7927b66d11058da98c13b6b12942 Signed-off-by: Sooriyaa <soponraj@in.ibm.com>
2018-09-10Merge "RestMusicQAPI.java: Fixed sonar issues"Thomas Nelson1-22/+13
2018-09-10Adding a constant to remove duplicate stringSooriyaa1-4/+5
Adding a constant to remove duplicate string Issue-ID: MUSIC-133 Change-Id: I1c9e82cf210c2dd0f00bec53c95fa5281f368568 Signed-off-by: Sooriyaa <soponraj@in.ibm.com>
2018-09-07RestMusicQAPI.java: Fixed sonar issuesArundathi Patil1-22/+13
Fixed sonar code-smells/issues across this file Issue-ID: MUSIC-132 Change-Id: I8085caf301a46165675ff20a80b0fac1fbf885ff Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
2018-09-06Merge "JsonNotification.java: Fixed sonar issue"Thomas Nelson1-1/+0
2018-09-06Merge "Removing the literal true boolean value"Thomas Nelson1-2/+2
2018-09-06Merge "Remove the unused import"Thomas Nelson1-2/+0
2018-09-06Merge "Added error log in MusicConditional class"Thomas Nelson1-0/+4
2018-09-06Merge "replaced stacktrace with error log"Thomas Nelson1-2/+5
2018-09-05Merge "RestMusicVersionAPI.java: Fixed sonar issue"Bharath Balasubramanian1-3/+0
2018-09-05Merge "Remove the literal false boolean value"Bharath Balasubramanian1-1/+1
2018-09-05Merge "Move string literal to left of string comparison"Bharath Balasubramanian1-1/+1
2018-09-05Merge "Added bug fix reported in SonarQube for MusicUtil"Bharath Balasubramanian1-2/+2
2018-09-05Merge "Added fix for potential nullpointer exception"Bharath Balasubramanian1-1/+0
2018-09-05Added error log in MusicConditional classChandan Ghosh1-0/+4
Added error log in MusicConditional class where it was missing. Reported in Sonar. Issue-ID: MUSIC-129 Change-Id: I8d3102547015313520b67058312e4072f621ca34 Signed-off-by: Chandan Ghosh <cghosh12@in.ibm.com>
2018-09-05Move string literal to left of string comparisonSooriyaa1-1/+1
Move string literal to left of string comparison Issue-ID: MUSIC-131 Change-Id: I210469c9c7e827df51f20fb7f580282a145b4464 Signed-off-by: Sooriyaa <soponraj@in.ibm.com>