Author Topic: API calls limit error from EA  (Read 1984 times)

ea0921

  • EA User
  • **
  • Posts: 99
  • Karma: +0/-1
    • View Profile
API calls limit error from EA
« on: September 20, 2024, 03:18:23 pm »
Hello,

I have an integration in which I am integrating multiple projects of EA from to other projects of EA.

Projects used are: .qea(file based), and .eap(mysql database)

There are multiple read and write operations being performed on the projects at the same time parallelly for each entity that is present in the project. Each project has around 3 root nodes and 50 packages in each root node. And each package around 20-30 elements/diagrams in it.

I am getting pop-up of database lock on too many API calls on same project for the (.qea) file.

I want to understand why am i getting this pop-up for (.qea) file. Does EA internally apply some locking mechanism??

Thanks

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13282
  • Karma: +556/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: API calls limit error from EA
« Reply #1 on: September 20, 2024, 03:52:19 pm »
Probably simply a technical limitation of the SQLite database.

Geert

PS. .eap files are typically MS Access databases, unless it's a shortcut file, but in that case the extension doesn't really matter.

ea0921

  • EA User
  • **
  • Posts: 99
  • Karma: +0/-1
    • View Profile
Re: API calls limit error from EA
« Reply #2 on: September 20, 2024, 04:31:58 pm »
Thank you Geert