Hi @Davide Vergari,
If you ask beeline to run commands in one file, they will run sequentially. However, you could try the following:
1. Split the queries in different files and run multiple beeline commands in different threads in your program.
2. Use JDBC where you can open multiple connections in different threads and run queries on each connection.
Hope that helps.