RedisLabs / spark-redis

A connector for Spark that allows reading and writing to/from Redis cluster

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

seem the limit do not work on show()

yuanlin-work opened this issue · comments

this is my code:
`
df.limit(3);

df.show();

`

and got all data printed on the console
but change it like this work fine:
df.show(3)
Is that what it is? tks

and the depencies is:

org.apache.commons
commons-pool2
2.0


redis.clients
jedis
3.2.0