Age | Commit message (Collapse) | Author | Files | Lines |
|
Project: aai/sparky-be master b83325323617b24b4316f6cf2532236e603167a5
Merge "Fix sync update flow"
Fix sync update flow
Issue-ID: AAI-1999
Change-Id: Id10b657236aff9ee1009ff0e1627a894e3881a87
Signed-off-by: fpaquett <francis.paquette@amdocs.com>
|
|
Project: aai/sparky-be master 885545697c79b299a372956b1b368e13bab3426c
Updating the new schema service ingest
Issue-ID: AAI-2006
Change-Id: I25360ea42d1e09ada6af00dbe99ceace978ee09a
Signed-off-by: Arul.Nambi <arul.nambi@amdocs.com>
|
|
Project: aai/aai-common master e42c7cf9d25b5a5ec3e3bf2cbb5e04441ec45359
Merge "AAI-1523 checkstyle warnings for aai-core auth"
AAI-1523 checkstyle warnings for aai-core auth
Issue-ID: AAI-1523
re-indent code with spaces to clean up some checkstyle warnings
for aai-core test auth (part of 24k lines of output)
Change-Id: I634a49d499f5a6605510633ec2ab6069a04cccba
Signed-off-by: Keong Lim <keong.lim@huawei.com>
|
|
Project: aai/aai-common master 80fee7d8e6bb5c28de01cefe3453618051188528
Bump patch version in version.properties
Issue-ID: AAI-1900
Change-Id: I29e56e0deaa3d201795c5326d7358ce2d4b652de
Signed-off-by: jimmy <jf2512@att.com>
|
|
Project: aai/aai-common master 3d2bc847bcfaeb05bfa56f72fad8b395854c4598
Update to latest spring and spring boot
Issue-ID: AAI-1900
Change-Id: Ie6fa1338fd88fcd7ce3f3d350277f82b8f90138f
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
|
|
Project: aai/aai-common master 88bb14a7c2a1638133182b6030a01eead186bb66
Merge "Update schema ingest library call schema service"
Update schema ingest library call schema service
Issue-ID: AAI-1994
Change-Id: Icc9910db0371eeb8289abd4381ae1936a281a5df
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/aai-common master ddf953affc477a77f9b68583f8ba0d6d5705882a
Add nodesQuery document
Issue-ID: AAI-1993
Change-Id: Ic18ed4be11ce654214cffd7f2e0180f078eee9ed
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
|
|
Project: aai/sparky-be master 53d13ff36532723582f55febce79de2282e46cde
Updating https certificate
Issue-ID: AAI-1992
Change-Id: Ied8d4468dbd2f477595a5802d3c8e0b0789d13e8
Signed-off-by: Arul.Nambi <arul.nambi@amdocs.com>
|
|
Project: aai/aai-common master 8fb7aa6480d4d7becbbab5fcfabd6af3f57e7d74
Improve the performance of resoures microservice
Currently the findSubGraph is being invoked
and causing additional calls to the database by backing
a tree backed vertex and slowing the performance of GET ALLs
Original intention of both of them was to pre fetch depth 0, 1, and 2
at once so we don't have to get them at each depth but since
that was not done right there is extra amount of time
After the aai-uri migration to ensure all vertexes
have the aai-uri and also to make sure they are unique across graph
we don't need to traverse a vertex to find the parents to build aai-uri
it was done previously when there was no aai-uri to derive the uri of a
given vertex and its not necessary anymore so there would be performance
improvements of vserver when there are a lot of relationships
Currently the edge labels are retrieved for each vertex a
and b and the performance of the GET with relationships will be
propotional to the GET request and how many cousin edges it has
and the more cousin edges there are the more slower the response time
will be as for each cousin vertex its trying to get the edge in between
so the code is modified to only go to the database for the edge label
when there are multiple edge labels (cousin edges) between a and b
If there are only one edge label and its a cousin vertex then we
can use the edge rule to be able to figure out the edge label
Improve PUT on the cloud region by modifying the getEdgesBetween
method which currently was retrieving all the parent
child edges between a and b and then only using the first edge
The traversal itself was too complicated and was costly in terms of
database retrieval and calls and optimized the code to utilize the
edge information so we can modify the query to db at runtime
based on the information provided so when a 10000 vservers under a
tenant adding a new vserver under tenant would be slow because of the
old query performance as it was taking some time there but with this
optimization, its only spending at most a millisecond or 2 in that
method
Also noticed that when a PUT operation takes place, the method
calls the related objects to create a dmaap event which was in turn
calling the findParents and actually utilizing the parents to create the
dmaap event and would spend quite a lot of time here because of the
expensive call of the findParents in this case we need those vertexes
So optimized the code so based on a given vertex, we have the aai-uri
and the newly added metadata uriTemplate to break the aai-uri into
its parent aai-uri and grand parent aai-uri and so forth
With this breakdown, we can get the list of aai-uris which are parents,
grandparents and then use the aai-uri to look them up which is O(1)
lookup time due to the fact they are unique indexes
The time it takes when doing a traversal to find the parents is
propotional to the number of edges but this will be optimistic
Another area which was improved was the json path execution of the
edge rules so when the edge rules get loaded into memory it creates a
document object, it utilizes the jsonpath to query information about
the edge rules but the only thing here is each time it gets called
the query gets invoked and uses jsonpath to retrieve the edge rules when
we can cached them based on the filter so that the user executed and if
the filter is the same as before, the expected edge rules will return
the same
Too much time was spent making the query and retrieving and building the
edgerules
So a cache is a perfect way to optimize this part
Issue-ID: AAI-1987
Change-Id: Ieb8237de3fd31136ceac14bf4a8216a7ab3b7179
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/aai-common master 7bc1735a516e56d837aa5af3d4849cdcb7af26c7
Merge "Make instance-group description optional"
Make instance-group description optional
Issue-ID: AAI-1982
Change-Id: Ie572a40a7d0590a62d4919a76753a632c52c4766
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/aai-common master b5fd9c7b3b584da14ddb839556b769d4ed82c4a3
Merge "Add support for generic vnf to cloud region"
Add support for generic vnf to cloud region
Issue-ID: AAI-1980
Change-Id: Ic1a5689a891dac0ca13ab1b26760174985f304de
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/sparky-be master 4d27f8557d5d59c8be5a342f0e16a18ef400cae5
Merge "update to use latest portal sdk"
update to use latest portal sdk
update epsdk-fw to latest version to make use of aaf
Issue-ID: AAI-1978
Change-Id: I9cd9a4ec57db5183c95b0606cac0e1fdfd1a6ac5
Signed-off-by: renealr <reneal.rogers@amdocs.com>
|
|
Project: aai/sparky-be master 64799959d265ad14c44b0d1d07a50bfa7d7d3e6d
Reactivate nightly sync
Issue-ID: AAI-1972
Change-Id: I666963583e2f1cfc2dba335ae76d1a27962d9f63
Signed-off-by: fpaquett <francis.paquette@amdocs.com>
|
|
Project: aai/aai-common master 1ec56296a5cd88ba083dbd247d314a0c56dd4de8
Move epics into New Features section
Change-Id: Ie265699bdfe61b3b58f7c5f01397c0accf319069
Issue-ID: AAI-1914
Signed-off-by: jimmy <jf2512@att.com>
(cherry picked from commit 9859c648e1d601b3398d40562bacce0068177030)
|
|
Project: aai/aai-common master 7737fd1d14edd46b2417a1efc4b1e2c71924f608
Update aai release notes
Issue-ID: AAI-1914
Change-Id: Ief1f951c6b20543c5f2f16af07d27bb62f8d02a1
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
(cherry picked from commit 73ff5292241bb2c58ef52fb06f373140481058db)
|
|
Project: aai/esr-gui master fef4341c5f9c87c26bde1f4dacf47d708bb74f70
Fix esr tomcat security vulnerabilites
Issue-ID: AAI-1749
Change-Id: I5c82dfba4cfde69c120341558c7c369187b1dddb
Signed-off-by: Lvbo163 <lv.bo163@zte.com.cn>
|
|
Project: aai/sparky-be master 5e4b48acc875f88e2958b4469cb889222ca2f11c
Removed edit attribute code
Removed obsolete code related to the edit attributes feature from
sparky-be.
Issue-ID: AAI-1956
Change-Id: I25754ec5440ce199ca5678b2074a1f090dde46ab
Signed-off-by: sstoykov <stela.stoykova@amdocs.com>
|
|
Project: aai/aai-common master 49c37cdfbb9378cbc4531b8731c68c33c7cf1d18
AAI-1926 Fix EdgeRules for Dublin
Issue-ID: AAI-1926
Fix EdgeRules for Dublin, rework AAI-1925 instead of cherry-pick.
Fix EdgeRule for allotted-resource to allotted-resource in main json.
Fix EdgeRule for allotted-resource to p-interface in ccvpn json.
Change-Id: I32c404f48583fc7d770e65fbff0b23afb0320245
Signed-off-by: Keong Lim <keong.lim@huawei.com>
|
|
Project: aai/sparky-be master 14f155e7a8a93b499b4f4eed801281dc92faca14
Merge "update sparky read the docs files"
update sparky read the docs files
update the rst files for sparky read the doc files
removed white space
Issue-ID: AAI-1268
Change-Id: I4ff2ab6d34e1cb4112fb22c46cd20306e44cc834
Signed-off-by: renealr <reneal.rogers@amdocs.com>
|
|
Project: aai/sparky-be master 4bace97cd71f468d475317d53c7f5c33d4d2b863
Moving gzip properties into fe
Issue-ID: AAI-1881
Change-Id: Icd7f912d7cd8dc965051ed89b77718b84fc4a235
Signed-off-by: Arul.Nambi <arul.nambi@amdocs.com>
|
|
Project: aai/aai-common master 3985d3b0e00c8137010c73770aecb1bb7b62b46f
AAI-1523 checkstyle warnings for aai-core
Issue-ID: AAI-1523
re-indent code with spaces to clean up some checkstyle warnings
for aai-core test (part of 24k lines of output)
Change-Id: I3b33fbe46458e4f0f3273c48ff9cfb0673ae18f4
Signed-off-by: Keong Lim <keong.lim@huawei.com>
|
|
Project: aai/event-client master f2daa751f0c6e838316aa90f6a25ed267c8c6d48
support SSL in rabbit mq in event client lib
Issue-ID: AAI-1929
Change-Id: I5912b0814e4b565942e32c5ed6d5094b45040c33
Signed-off-by: Bansal, Nitin (nb121v) <nitin.bansal@amdocs.com>
|
|
Project: aai/aai-common master f19c486c7d6f2082ef697f24dcbd82890c16d584
Merge "Update:Typo Issue-ID: AAI-1911"
Update:Typo
Issue-ID: AAI-1911
Change-Id: I5185a4051d7e76c0be67f7f53099bd0fd6b95e1a
Signed-off-by: Manish Kumar <manishjpiet@gmail.com>
|
|
Project: aai/aai-common master ea6602027e5b2d7e1305b4d2a3d49d6a4d74a0c6
AAI-1923 Problem deleting due to EdgeRules
Issue-ID: AAI-1923
Fixed EdgeRules for ext-aai-info to esr-system-info
Fixed EdgeRules for lan-port-config to dhcp-service
Fixed EdgeRules for pnf to network-resource
Fixed EdgeRules for logical-link to ext-aai-network
Fixed EdgeRules for vpn-binding to ext-aai-network
Fixed EdgeRules for pnf to ext-aai-network
Fixed EdgeRules for connectivity to ext-aai-network
Fixed EdgeRules for lan-port-config to ext-aai-network
Fixed EdgeRules for network-resource to ext-aai-network
Fixed EdgeRules for site-resource to ext-aai-network
Fixed EdgeRules for sdwan-vpn to ext-aai-network
Fixed EdgeRules for device to ext-aai-network
Fixed EdgeRules for wan-port-config to ext-aai-network
Appears to be a problem with this combo in EdgeRules:
- "delete-other-v": "${direction}",
- "prevent-delete": "!${direction}",
Break the dependency by making one of these values "NONE".
(cherry picked from commit 04694a8e17d599bc8fd8b7732c648acfb2378f82)
Change-Id: Idc220c88742144a8ad091f316b3afef7be4537f6
Signed-off-by: Keong Lim <keong.lim@huawei.com>
|
|
Project: aai/aai-common master 6d4c56a5f9288d21ffe6d0711ede3b288f6030a2
Update R3 release notes
Issue-ID: AAI-1914
Change-Id: Iffed2a049e4b1e746d845a73da31432e6e9c74dc
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
|
|
Project: aai/sparky-be master 6f99c3307fe05014c23720cc191a086137135651
Gziping js to increase performance
Issue-ID: AAI-1881
Change-Id: I86551329447d9fd2efb8657d213a00f39e70fb84
Signed-off-by: Arul.Nambi <arul.nambi@amdocs.com>
|
|
Project: aai/aai-common master b2d56c3929923a6cba040083279feaf7d80bea34
Add icons for offeredapis doc
Issue-ID: AAI-1878
Change-Id: I96bf71a3fb4547532cd7720cbaf9b2aaf3a6af80
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
|
|
Project: aai/aai-common master 4f1f48e0253e802a6eb505b7bcbdab687811d79c
Update offeredapis doc
Issue-ID: AAI-1878
Change-Id: Ida28026f4d7edddd901fa3c6e5b6c2327b33c084
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
|
|
Project: aai/aai-common master 6edb62395a4a18481ff851a218af3e570f085b4e
Update API doc and custom query doc
Issue-ID: AAI-1878
Change-Id: I597eed7bfc64f73b2ac4300ca63f77384e727813
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
|
|
Project: aai/aai-common master 84e5a3a494565d21fae0ea79b470b0ef7f31a6d6
Update API doc and add custom query doc
Issue-ID: AAI-1878
Change-Id: I55d29b3a4ad6c5b4a641644a82fe1848b3a10b7c
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
|
|
Project: aai/sparky-be master 206e44d57c0b1800abc2faf313a5c0c1b4945a8a
update sparky with configurable features
Allow end user calls and sync calls to be configurable
expose the ability to set shallow entities configuration from a
delimited string
add proper exit condition for auto suggestion if the suggestible type
list is empty
enable a configurable domain
add the ability to personalize html header and title
Issue-ID: AAI-1874
Change-Id: Iec7183e0e82dba7f63780eeab824d000fe5f558c
Signed-off-by: renealr <reneal.rogers@amdocs.com>
|
|
Project: aai/esr-gui master 87fa6ad968ad43587e0fde8c346e5e2df1fb4834
Revert "Fix esr security vulnerabilites"
This reverts commit 2b609609b666715907dad476b8a1ffaaa6f33989.
Issue-ID: AAI-1879
Change-Id: Ie1bb804778a36e84be02e82a618df70da4d4c6ae
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
|
|
Project: aai/aai-common master 2456dc2bb7901d129e8d77dc2bab64ea6747d1ce
Merge "Add Casablanca API Doc"
Add Casablanca API Doc
Issue-ID: AAI-1878
Change-Id: I5fd0cb3d1aa90a2db282fd390d45bad3d5f44048
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
|
|
Project: aai/event-client master 898e060c37c2e7734a025dff9db1f733c9e4580f
Upversion to 1.4.0
Change-Id: I7e3ea37bac0f2d6e0cd34958670da0ffc0c5b3aa
Issue-ID: AAI-1844
Signed-off-by: Lee, Tian (tl5884) <tianl@amdocs.com>
|
|
Project: aai/sparky-be master 97d1b45603ad3c860ac733810ff3064990433c50
Updated version to Dublin
Issue-ID: AAI-1854
Change-Id: I89b89531606edff2dbc0fa2e198d7f686a6407d3
Signed-off-by: fpaquett <francis.paquette@amdocs.com>
|
|
Project: aai/aai-common master 7bfc30305b9341999e74f19f747bb7d3c77f6414
Fix bug on create created ts and modified ts
where on create the values should be
the same but it ends up being different sometimes
Issue-ID: AAI-1832
Change-Id: Ia8cfb75a5812e6b59f8000a820cf3605ab17eb2b
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/aai-common master c2ccad8c88d6eec83e8abb0eb4bab6f65cb74912
Add capability to record timestamp
Issue-ID: AAI-1831
Change-Id: Ifcadf1caa0f7764c759997f10f3f789b1a702872
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/aai-common master 02442650b1bed084c43c2cb96572e2165787b78e
Add edge rule to support vnf grouping
Issue-ID: AAI-1829
Change-Id: I994a31ac2d737be1db3e5a0821dbc09a32b473c6
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/aai-common master c4cce58aa04187ae5c7f1917d30aca061424ee50
Update to add relationship to aggregate route
Issue-ID: AAI-1824
Change-Id: I68e5e900db8f6a1a3489c66cd8ae71bbe977e98f
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/aai-common master f220ba5f41b10728da4b36379189f1278a5420c4
Add upgrade cycle to cloud region
Issue-ID: AAI-1828
Change-Id: Ifee15d4824a26319f159ed030b0c7f1ab8500041
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/event-client master 0e52f7e4939820808d7c849aaf64cfbbd187f7e8
upversion to 1.3.2
Change-Id: Ie3d4e37de0856bca272600e39719055fd0f2e0d6
Issue-ID: AAI-1791
Signed-off-by: sblimkie <steven.blimkie@amdocs.com>
|
|
Project: aai/aai-common master 9d661ab0572c486ad0534fd21d502de0782bd4ea
Add required properties to schema
Issue-ID: AAI-1826
Change-Id: Ifc7122880e2c98888aa6b478cba3f70fb4c62e52
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/aai-common master 9bae143d3310eb57bfbb0674f62f278f740db0f4
Replace platform specific line seperators System
Issue-ID: AAI-1463
Change-Id: Ibdd3803dd825342d54dfa1b008f1a8c2d78d6198
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/aai-common master 653948302e921dbcee24ed6746c73557c0b54c92
Add aggregate route object
Issue-ID: AAI-1824
Change-Id: I3b1fd2b0dca1add9736b49b26ede67e413aa2586
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/sparky-be master 847b9d464fe26ac3bca915cbda65bc0e55b61677
Upversion to 1.3.2-SNAPSHOT
Issue-ID: AAI-1809
Change-Id: Id5283080601920f1a490d177980e533c1c105171
Signed-off-by: fpaquett <francis.paquette@amdocs.com>
|
|
Project: aai/aai-common master d82a30bd3cb3c0d7fd7c1696abbb4e142631c595
Support generic-vnf vendor information
Issue-ID: AAI-1823
Change-Id: Ifa4ab02584bf99565286dcbaab38339030c70228
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/aai-common master f63960c075b06aa540aa8acccf4beff4497aab77
Add orchestration status to pnf
Issue-ID: AAI-1822
Change-Id: Ic78c2f272d25cd0068241db409c0927aaa622471
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/aai-common master 2a51416d266f0afa29a2246346e6d69cf38384bb
Add priority property to l-interface
Issue-ID: AAI-1820
Change-Id: Iea36a1d1e4c94ea2bc1cd698c482b4fd1db163a9
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/aai-common master fa0792d839d67142e916b12f083e9db067ab5f8d
Add vrf schema and edge rules
Issue-ID: AAI-1813
Change-Id: I1c0f53d9c75ea9d568bd8020680b75ef0a4bf3f6
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
|
|
Project: aai/sparky-be master a70fa9db699e759e43c68ed556abd51b2b77a8ae
Make use of sparky-fe 1.3.0
Issue-ID: AAI-1808
Change-Id: Ia928eb27aced0d9eba4e11fb3a0486f3a8b26205
Signed-off-by: fpaquett <francis.paquette@amdocs.com>
|