Run on Android Platforms

Since v0.4.0, GreptimeDB supports running on Android platforms with ARM64 CPU and Android API level >= 23.

Install terminal emulator on Android

You can install Termux from GitHub release page.

Download GreptimeDB Android binary.

bash

  1. curl -sOL https://github.com/GreptimeTeam/greptimedb/releases/download/v0.4.0/greptime-android-arm64-v0.4.0.tar.gz
  2. tar zxvf ./greptime-android-arm64-v0.4.0.tar.gz
  3. ./greptime -V

If binary’s downloaded correctly, the command is expected to print:

  1. greptimedb
  2. branch: HEAD
  3. commit: c9c2b3c91f273ff605782dbb8a4873e511dfea10
  4. dirty: false
  5. version: 0.4.0

Create GreptimeDB configuration file

You can create a minimal configuration file that allows access from local network.

bash

  1. DATA_DIR="$(pwd)/greptimedb-data"
  2. mkdir -p ${DATA_DIR}
  3. cat <<EOF > ./config.toml
  4. [http]
  5. addr = "0.0.0.0:4000"
  6. [grpc]
  7. addr = "0.0.0.0:4001"
  8. [mysql]
  9. addr = "0.0.0.0:4002"
  10. [storage]
  11. data_home = "${DATA_DIR}"
  12. type = "File"
  13. EOF

Start GreptimeDB from command line

bash

  1. ./greptime --log-dir=$(pwd)/logs standalone start -c ./config.toml

Connect to GreptimeDB running on Android

You can find the IP address of your Android device from system settings or ifconfig.

You can now connect to the GreptimeDB instance running on Android from another device with MySQL client installed.

bash

  1. mysql -h <ANDROID_DEVICE_IP_ADDR> -P 4002

And play like on any other platforms!

  1. Welcome to the MySQL monitor. Commands end with ; or \g.
  2. Your MySQL connection id is 8
  3. Server version: 5.1.10-alpha-msql-proxy Greptime
  4. Copyright (c) 2000, 2023, Oracle and/or its affiliates.
  5. Oracle is a registered trademark of Oracle Corporation and/or its
  6. affiliates. Other names may be trademarks of their respective
  7. owners.
  8. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  9. mysql> CREATE TABLE monitor (env STRING, host STRING, ts TIMESTAMP, cpu DOUBLE DEFAULT 0, memory DOUBLE, TIME INDEX (ts), PRIMARY KEY(env,host));
  10. Query OK, 0 rows affected (0.14 sec)
  11. mysql> INSERT INTO monitor(ts, env, host, cpu, memory) VALUES
  12. -> (1655276557000,'prod', 'host1', 66.6, 1024),
  13. -> (1655276557000,'prod', 'host2', 66.6, 1024),
  14. -> (1655276557000,'prod', 'host3', 66.6, 1024),
  15. -> (1655276558000,'prod', 'host1', 77.7, 2048),
  16. -> (1655276558000,'prod', 'host2', 77.7, 2048),
  17. -> (1655276558000,'test', 'host3', 77.7, 2048),
  18. -> (1655276559000,'test', 'host1', 88.8, 4096),
  19. -> (1655276559000,'test', 'host2', 88.8, 4096),
  20. -> (1655276559000,'test', 'host3', 88.8, 4096);
  21. Query OK, 9 rows affected (0.14 sec)
  22. mysql>
  23. mysql> select * from monitor where env='test' and host='host3';
  24. +------+-------+---------------------+------+--------+
  25. | env | host | ts | cpu | memory |
  26. +------+-------+---------------------+------+--------+
  27. | test | host3 | 2022-06-15 15:02:38 | 77.7 | 2048 |
  28. | test | host3 | 2022-06-15 15:02:39 | 88.8 | 4096 |
  29. +------+-------+---------------------+------+--------+
  30. 2 rows in set (0.20 sec)