Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add ttl and timestamp support to insert/update operations #90

Conversation

nicodeslandes
Copy link

This PR updates the Mapper and CqlBatch classes to provide the ability to specify a TTL or a TIMESTAMP option when performing an insert operation.

This is done using the new CqlQueryOptions class when calling IMapper.Insert, like this:

mapper.Insert(newUser, new CqlInsertOptions
                       {
                           Ttl = TimeSpan.FromSeconds(42),
                           Timestamp = DateTimeOffset.Parse("2014-2-1")
                       });

The more "Java-like" syntax offered by CqlQueryOptions is also available:

mapper.Insert(newUser,
    CqlInsertOptions.New().
        SetTtl(TimeSpan.FromSeconds(42)).
        SetTimestamp(DateTimeOffset.Parse("2014-2-1")));

The InsertIfExists variant can also take CqlQueryOptions.

The same can be implemented for Update operations, but I thought 'd get some feedback on the initial implementation for Inserts first before moving on to that.

Note

Another way to add TTL and TIMESTAMP options would have been to either change or subclass CqlQueryOptions. But I thought it might be better to add a new class altogether for 2 reasons:

  • The Insert/InsertIfExists methods already take a CqlQueryOptions and I didn't want to change their signature, to avoid breaking backward compatibility issues. I could have subclassed CqlQueryOptions without changing the signature of Insert, but then the new options would not have been easily discoverable
  • The current CqlQueryOptions define options to apply at the IStatement level, and don't control how CQL query strings are generated, so it has a slightly different scope from CqlInsertOptions.

… of CqlBatch and Mapper classes, which allows to specify a TTL and TIMESTAMP when doing an Insert.
@datastax-bot
Copy link

Hi @nicodeslandes, thanks for your contribution!

In order for us to evaluate and accept your PR, we ask that you sign a contribution license agreement. It's all electronic and will take just minutes.

Sincerely,
DataStax Bot.

@datastax-bot
Copy link

You did it @nicodeslandes!

Thank you for signing the Contribution License Agreement.

Cheers,
DataStax Bot.

@jorgebay
Copy link
Contributor

Looks good, I'll make a full review shortly.

@jorgebay
Copy link
Contributor

jorgebay commented Apr 1, 2015

I don't think its a good idea to add more cql generation to the Mapper, I think the purpose of the Mapper is to not get in the way of the queries. It generates and completes the default queries, but if the user wants cql control (like in this case field TTL), the user should write the query using the other method overloads.

Initially I thought it was related to protocol-level timestamp, but not query based timestamp and TTL, sorry for that.

@LukeTillman: What do you think?

@LukeTillman
Copy link
Contributor

Yeah, I agree about keeping the CQL generation to a minimum. Although I do think we should support protocol level timestamp in v3:

https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v3.spec#L322

Since TTLs are in seconds, those are pretty easy to just provide as query parameters using the BCL (i.e. TimeSpan.FromXXX().TotalSeconds). Query-based timestamps are a little trickier since they're microseconds since epoch and I have a utility class I've been using for to generate values for those:

https://github.com/LukeTillman/killrvideo-csharp/blob/master/src/KillrVideo.Utils/MicrosecondsSinceEpoch.cs

@LukeTillman
Copy link
Contributor

I wouldn't be opposed to including a query builder that builds Cql instances though (that could potentially include TTL and Timestamp methods). Doesn't the Java driver have a builder API like that?

@jorgebay
Copy link
Contributor

jorgebay commented Apr 6, 2015

The java driver has a query builder API, but we also have Linq that generates the cql queries from a typed expression. I think, from a product standpoint, it makes sense to recommend Linq when the user wants cql generation (and mapping) and recommend the Mapper when the user wants to write their own queries and get the results mapped.

@collinsauve
Copy link
Contributor

@jorgebay I believe this can be closed? Ttl is now supported as an overload to insert (but not update), and timestamp is supported on both insert and update via CqlQueryOptions.

@jorgebay
Copy link
Contributor

jorgebay commented Apr 8, 2016

Thanks for the reminder!

@jorgebay jorgebay closed this Apr 8, 2016
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants