Announcements
This site is in read only until July 22 as we migrate to a new platform; refer to this community post for more details.
Get hands-on experience with 20+ free Google Cloud products and $300 in free credit for new customers.

Offset parameter - Search Index - GAE - Legacy bundled with Python3 not working since December 2024

Hi our community,

I'm using Python 3 with legacy bundled in my project so I can access Search index of Google App Engine from my application.
It's working as normal.

However, starting from 14th December, 2024, I have seen that the Search index not working with offset parameter anymore (I have no changes for it).

Other parameters like limit, sort_options are still working as expected. Really weird!!!

search.Query(
query_string=query,
options=search.QueryOptions(
offset=offset,
limit=limit,
sort_options=search.SortOptions(
expressions=[
search.SortExpression(
expression=expression,
direction=direction
)
]
)
),
)

Do you know how to deal with it?

Thanks,

Solved Solved
0 2 156
1 ACCEPTED SOLUTION

Hi @secretlm, thank you for sharing your question! It seems like this issue is more closely related to Google App Engine than Application Integration. To ensure you get the best guidance, I recommend exploring other forums within the Google Cloud Community, potentially posting this query in the Serverless forum.

If you’re interested in learning more about Application Integration, we have office hours and helpful articles that dive deep into how to automate business processes by connecting any application with point-and-click configurations. Feel free to explore these resources, or let us know if you’d like help getting started!

View solution in original post

2 REPLIES 2

Hi @secretlm, thank you for sharing your question! It seems like this issue is more closely related to Google App Engine than Application Integration. To ensure you get the best guidance, I recommend exploring other forums within the Google Cloud Community, potentially posting this query in the Serverless forum.

If you’re interested in learning more about Application Integration, we have office hours and helpful articles that dive deep into how to automate business processes by connecting any application with point-and-click configurations. Feel free to explore these resources, or let us know if you’d like help getting started!

 Thanks @AlexET 
I'll move to Serverless forum.

Regards,