skip to Main Content

Redis make failing. Ubuntu 18.04

I am trying to make Redis 6.0.6., but when running the make command I get this error: (.venv) vagrant@vagrant:/vagrant/redis-6.0.6$ make cd src && make all make[1]: Entering directory '/vagrant/redis-6.0.6/src' /bin/sh: 1: pkg-config: not found CC Makefile.dep /bin/sh: 1: pkg-config: not…

VIEW QUESTION

Pyspark + Redis Remote Server

I have a server with redis and maven configured I then do the following sparkSession spark = pyspark .sql .SparkSession .builder .master('local[4]') .appName('try_one_core') .config("spark.redis.host", "XX.XXX.XXX.XXX") .config("spark.redis.port", "6379") .config("spark.redis.auth", "XXXX") .getOrCreate() I am trying to connect to a remote redis server…

VIEW QUESTION
Back To Top
Search