-
Notifications
You must be signed in to change notification settings - Fork 74
Guide for Developers
Please follow the Getting Started Guide to install the required packages and obtain the codebase.
Before you import the project, you need to have "Scala", and "SBT Executor" plugins installed in Intellij.
- In Intellij, open
File -> New -> Project From Existing Source
, then choose theamber
folder insidecore
. - In the next window, select
Import Project from external model
, then selectsbt
. - In the next window, make sure
Project JDK
is set. Click OK. - IntelliJ should import and build this Scala project. Wait until the indexing and importing is completed.
- When IntelliJ prompts "Scalafmt configuration detected in this project" in the bottom right corner, select "Use scalafmt formatted".
If you missed the IntelliJ prompt, you can check the
Event Log
on the bottom right
- To check lint, under
core/amber
run commandsbt "scalafixAll --check"
; to fix lint issues, runsbt scalafixAll
. - To check format, under
core/amber
run commandsbt scalafmtCheckAll
; to fix format, runsbt scalafmtAll
. - When you need to execute both, scalafmt is supposed to be executed after scalafix.
The easiest way to run the webserver is in IntelliJ. Amber is a distributed engine. We need to run the controller process, and at least one worker process.
To run the controller process, go to src/main/scala/edu/uci/ics/texera/web/TexeraWebApplication.scala
, then run the main function by pressing on the green run button.
Wait for the process to start up. If you can find the following messages, then the controller process is successfully started.
[main] [akka.remote.Remoting] Remoting now listens on addresses:
org.eclipse.jetty.server.Server: Started
- If IntelliJ displays CreateProcess error=206, The filename or extension is too long : add the -Didea.dynamic.classpath=true in Help | Edit Custom VM Options and restart the IDE
To run the worker process, go to src/main/scala/edu/uci/ics/texera/web/TexeraRunWorker.scala
, then run the main function. Wait for it to connect to the same cluster. If you see the following prompt, then it means you have successfully started the Texera server based on the Amber engine.
---------Now we have 1 node in the cluster---------
An alternative to run the backend engine is to run it in the command line. Navigate to core
folder in terminal window, run scripts/server.sh
, and then open a separate tab and run scripts/worker.sh
.
- The test framework is
scalatest
, tests are located undercore/amber/src/test
. You can find unit tests and e2e tests. - To execute it, navigate to
core/amber
directory in the command line and executesbt test
. - If using IntelliJ to execute the test cases please make sure to change the working directory to
core/amber
.
This is for developers that work on the frontend part of the project. This step is NOT needed if you develop the backend only.
Recommend using nodejs@18 LTS
and required to use yarn@4.5.1
.
Install yarn:
npm install -g yarn
corepack enable && corepack prepare yarn@4.5.1 --activate && yarn --cwd core/gui set version 4.5.1
You need to install Angular CLI to build and run the new GUI.
yarn global add @angular/cli
yarn install
Ignore those warnings (warnings are usually marked in yellow color or start with WARN
).
- In Intellij, open
File -> Open
, then choose thegui
folder insidecore
. - IntelliJ should import this project. Wait until the indexing and importing is completed.
- Click on the Green Run button next to the
Angular CLI Server
. - Wait for some time and the server will get started. Open a browser and access
http://localhost:4200
. You should see the Texera UI with a canvas.
Every time you save the changes to the frontend code, the browser will automatically refresh to show the latest UI.
Before merging your code to the master branch, you need to pass the existing unit tests first.
- Open a command line. Navigate to the
core/gui
directory. - Start the test:
ng test --watch=false
- Wait for some time and the test will get started.
You should also write some unit tests to cover your code. When others need to change your code, they will have to pass these unit tests so that you can keep your features safe.
The unit tests should be written inside
.spec.ts
file.
Run the following command
yarn run build
This command will optimize the frontend code to make it run faster. This step will take a while. After that, start the backend engine in IntelliJ and use your browser to access http://localhost:8080
.
Run the following command
yarn format:fix
This command will fix the formatting of the frontend code.
- Install Python@3.10, it's recommended to create a virtualenv to get a new copy of Python. Note: if you are using Apple's new M1 chip, please install Python through Anaconda.
- Obtain Python executable path, for example, run
which python
orwhere python
, and copy the returned path. - Fill the Python executable path into
core/amber/src/main/resources/udf.conf
, under thepath
key. - Install dependencies:
pip install -r core/amber/requirements.txt -r core/amber/operator-requirements.txt -r core/amber/r-requirements.txt
. - For formatting python files:
black core/amber/src/main/python
.
-
Install and use MySQL@8+ and create
texera_db
withcore/scripts/sql/texera_ddl.sql
. -
Edit
core/gui/src/environments/environment.default.ts
, changeuserSystemEnabled
to true. -
Edit
core/amber/src/main/resources/application.conf
- Change
user-sys.enabled
to true. - Change
jdbc.username
andjdbc.password
to your MySQL user and password to accesstexera_db
that you just created.
- Change
-
Optional: Add
googleClientId
to the same file to enable google login. -
Restart frontend and backend. You should see the homepage. You can register or login there.
- Set
clientId
andclientSecret
incore/amber/src/main/resources/application.conf
. - Login to Texera with an admin account.
- Open the Gmail dashboard under the admin tab.
- Authorize a Google account for sending emails.
- Send a test email.
This part is optional, you only need to do this if you are working on a specific task.
- Install MongoDB on your development environment(4.4 works for Ubuntu, 5.0 works for Mac/Windows).
- Start MongoDB with the default configuration.
- Edit
core/amber/src/main/resources/application.conf
, changestorage.mode
to "mongodb". - Start Texera, all the results of sink operators will be saved into MongoDB if applicable.
- Create the needed new table in MySQL and update
core/scripts/sql/texera_ddl.sql
to include the new table. - Run
core/util/src/main/java/edu/uci/ics/util/RunCodegen.java
to generate the classes for the new table. - Create a helper class under
core/amber/src/main/scala/edu/uci/ics/texera/web/resource/dashboard
.
Note: Jooq creates DAO for simple operations if the requested SQL query is complex, then the developer can use the generated Table classes to implement the operation
Edit core/gui/src/environments/environment.default.ts
, change localLogin
to false
.
Edit core/gui/src/environments/environment.default.ts
, change inviteOnly
to true
.
There are two types of permissions for the backend endpoints:
- @RolesAllowed(Array("Role"))
- @PermitAll Please don't leave the permission setting blank. If the permission is missing for an endpoint, it will be @PermitAll by default.