Api /jndi connectivity impacts

What are the impacts to make it a loosely coupled with Database especially for Business Database instead of relying on Datastore ? Trying to call as a Database as a Service Api to persist the business data.

OriginalPostID-271306

  Discussion posts and replies are publicly visible

Parents
  • I'd say the only impact is that you have to implement all the logic to perform database operations yourself on the end point while Data Stores already do this for you with zero coding.

    This can especially be cumbersome when you need complex inserts with foreign key relationships.

    You also need to consider the size of the request. If your endpoint is protected it might already have some checks to prevent requests with a size > than a certain limit.
Reply
  • I'd say the only impact is that you have to implement all the logic to perform database operations yourself on the end point while Data Stores already do this for you with zero coding.

    This can especially be cumbersome when you need complex inserts with foreign key relationships.

    You also need to consider the size of the request. If your endpoint is protected it might already have some checks to prevent requests with a size > than a certain limit.
Children
No Data